query$66148$ - vertaling naar grieks
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

query$66148$ - vertaling naar grieks

FEATURE TO EFFICIENTLY EXECUTE QUERIES EFFICIENTLY IN DBMS SOFTWARES
Query optimizer; Cost-based query optimizer; Query optimisation; Query planner

query      
v. ερωτώ, εξετάζω, ζητώ, ζητώ να μάθω
information retrieval         
  • German entry]], original source [http://www.logos-verlag.de/cgi-bin/engbuchmid?isbn=0514&lng=eng&id= Dominik Kuropka]).
ACTIVITY OF OBTAINING INFORMATION RESOURCES RELEVANT TO AN INFORMATION NEED FROM A COLLECTION OF INFORMATION RESOURCES
Information Retrieval; Information retreival; Information retrieval applications; IR evaluation; Information storage and retrieval systems; Information Retrieval System; Query (databases); Information retrieval evaluation; Information retrieval system; Query performance prediction; Retrieval of the information; History of information retrieval
ανάκτηση πληροφορίων
question mark         
  • Perso-Arabic]]
  • 8th century ''punctus interrogativus'' from the [[Godescalc Evangelistary]]. ([https://gallica.bnf.fr/ark:/12148/btv1b6000718s/f12 BnF NAL 1203, f. 6v].)
  • Burgerbibliothek Bern]], [https://www.e-codices.ch/en/bbb/0162/15r Cod. 162, f. 15r].)
TYPOGRAPHIC CHARACTER INDICATING A QUESTION
Question Mark; Question Mark (computer science); ﹖; ؟; Interrogation point; Eroteme; ?; ՞; Interrogation mark; ???; Questionmark; Question point; Question mark (punctuation); Mirrored question mark; ❔; ❓; Greek question mark; ≟; ︖; Erotimatiko; ?; ⩻; ⩼; Interrogative-point; Interrogative-points; Question marks; ASCII 63; Reversed question mark; \x3F; U+003F; Questionable equality; &quest
ερωτηματικό

Definitie

database query language
<database> A language in which users of a database can (interactively) formulate requests and generate reports. The best known is SQL. (1998-04-15)

Wikipedia

Query optimization

Query optimization is a feature of many relational database management systems and other databases such as NoSQL and graph databases. The query optimizer attempts to determine the most efficient way to execute a given query by considering the possible query plans.

Generally, the query optimizer cannot be accessed directly by users: once queries are submitted to the database server, and parsed by the parser, they are then passed to the query optimizer where optimization occurs. However, some database engines allow guiding the query optimizer with hints.

A query is a request for information from a database. It can be as simple as "find the address of a person with Social Security number 123-45-6789," or more complex like "find the average salary of all the employed married men in California between the ages 30 to 39 who earn less than their spouses." The result of a query is generated by processing the rows in a database in a way that yields the requested information. Since database structures are complex, in most cases, and especially for not-very-simple queries, the needed data for a query can be collected from a database by accessing it in different ways, through different data-structures, and in different orders. Each different way typically requires different processing time. Processing times of the same query may have large variance, from a fraction of a second to hours, depending on the chosen method. The purpose of query optimization, which is an automated process, is to find the way to process a given query in minimum time. The large possible variance in time justifies performing query optimization, though finding the exact optimal query plan, among all possibilities, is typically very complex, time-consuming by itself, may be too costly, and often practically impossible. Thus query optimization typically tries to approximate the optimum by comparing several common-sense alternatives to provide in a reasonable time a "good enough" plan which typically does not deviate much from the best possible result.